- Regular Expressions
- A "regular expression" (RegEx) is a text string that describes the other string's content. RegEx may be used to find substring in a string or make the decision about strings matching.
Regular expressions have a syntax in which a few characters are special constructs and the rest are ordinary. An ordinary character is a simple regular expression, which matches that character and nothing else. The special characters are '$','^','.','*','+','?','[',']' and '\'. Any other character appearing in a regular expression is ordinary, unless a '\' precedes it.
- .
- is a special character that matches anything except a new line. Using concatenation, we can make regular expressions like 'a.b' which matches any three-character string which begins with 'a' and ends with 'b'.
- *
- is not a construct by itself; it is a suffix, which means the preceding regular expression is to be repeated as many times as possible. In 'fo*', the '*' applies to the 'o', so 'fo*' matches 'f' followed by any number of 'o''s. The case of zero 'o''s is allowed: 'fo*' does match 'f'. '*' always applies to the smallest possible preceding expression. Thus, 'fo*' has a repeating 'o', not a repeating 'fo'. The matcher processes a '*' construct by matching, immediately, as many repetitions as can be found. Then it continues with the rest of the pattern. If that fails, backtracking occurs, discarding some of the matches of the '*''d construct in case that makes it possible to match the rest of the pattern. For example, matching 'c[ad]*ar' against the string 'caddaar', the '[ad]*' first matches 'addaa', but this does not allow the next 'a' in the pattern to match. So the last of the matches of '[ad]' is undone and the following 'a' is tried again. Now it succeeds.
- +
- '+' is like '*' except that at least one match for the preceding pattern is required for '+'. Thus, 'c[ad]+r' does not match 'cr' but does match anything else that 'c[ad]*r' would match.
- ?
- '?' is like '*' except that it allows either zero or one match for the preceding pattern. Thus, 'c[ad]?r' matches 'cr' or 'car' or 'cdr', and nothing else.
- [ ... ]
- '[' begins a character set, which is terminated by a ']'. In the simplest case, the characters between the two form the set. Thus, '[ad]' matches either 'a' or 'd', and '[ad]*' matches any string of 'a''s and 'd''s (including the empty string), from which it follows that 'c[ad]*r' matches 'car', etc. Character ranges can also be included in a character set, by writing two characters with a '-' between them. Thus, '[a-z]' matches any lower-case letter. Ranges may be intermixed freely with individual characters, as in '[a-z$%.]', which matches any lower case letter or '$', '%' or period. Note that the usual special characters are not special any more inside a character set. A completely different set of special characters exists inside character sets: ']', '-' and '^'. To include a ']' in a character set, you must make it the first character. For example, '[]a]' matches ']' or 'a'. To include a '-', you must use it in a context where it cannot possibly indicate a range: that is, as the first character, or immediately after a range.
- [^ ... ]
- '[^' begins a complement character set, which matches any character except the ones specified. Thus, '[^a-z0-9A-Z]' matches all characters except letters and digits. '^' is not special in a character set unless it is the first character. The character following the '^' is treated as if it were first (it may be a '-' or a ']').
- ^
- is a special character that matches the empty string -- but only if at the beginning of a line in the text being matched. Otherwise it fails to match anything. Thus, '^foo' matches a 'foo' which occurs at the beginning of a line.
- $
- is similar to '^' but matches only at the end of a line. Thus, 'xx*$' matches a string of one or more 'x''s at the end of a line.
- \
- has two functions: it quotes the above special characters (including '\'), and it introduces additional special constructs. Because '\' quotes special characters, '\$' is a regular expression which matches only '$', and '\[' is a regular expression which matches only '[', and so on. For the most part, '\' followed by any character matches only that character. However, there are several exceptions: characters which, when preceded by '\', are special constructs. Such characters are always ordinary when encountered on their own. No new special characters will ever be defined. All extensions to the regular expression syntax are made by defining new two-character constructs that begin with '\'.
- |
- specifies an alternative. Two regular expressions a and b with '\|' in between form an expression that matches anything that either a or b will match. Thus, 'foo\|bar' matches either 'foo' or 'bar' but no other string. '\|' applies to the largest possible surrounding expressions. Only a surrounding '\( ... \)' grouping can limit the grouping power of '\|'. Full backtracking capability exists when multiple '\|''s are used.
- ( ... )
- is a grouping construct that serves three purposes:
- To enclose a set of '\|' alternatives for other operations. Thus, '\(foo\|bar\)x' matches either 'foox' or 'barx'.
- To enclose a complicated expression for the postfix '*' to operate on. Thus, 'ba\(na\)*' matches 'bananana', etc., with any (zero or more) number of 'na''s.
- To mark a matched substring for future reference.
This last application is not a consequence of the idea of a parenthetical grouping; it is a separate feature which happens to be assigned as a second meaning to the same '\( ... \)' construct because there is no conflict in practice between the two meanings. Here is an explanation of this feature: - \b
- matches the empty string, but only if it is at the beginning or end of a word. Thus, '\bfoo\b' matches any occurrence of 'foo' as a separate word. '\bball\(s\|\)\b' matches 'ball' or 'balls' as a separate word.
- \B
- matches the empty string, provided it is not at the beginning or end of a word.
- \<
- matches the empty string, but only if it is at the beginning of a word.
- \>
- matches the empty string, but only if it is at the end of a word.
- \w
- matches any word-constituent character.
- \W
- matches any character that is not a word-constituent.
- [:alnum:]
- letters and digits
- [:alpha]
- letters
- [:cntrl:]
- control characters (in the ASCII encoding, code 0177 and codes less than 040)
- [:digit:]
- digits
- [:graph:]
- same as `print' except omits space
- [:lower:]
- lowercase letters
- [:print:]
- printable characters (in the ASCII encoding, space tilde--codes 040 through 0176)
- [:punct:]
- neither control nor alphanumeric characters
- [:space:]
- space, carriage return, newline, vertical tab, and form feed
- [:upper:]
- uppercase letters
- [:xdigit:]
- hexadecimal digits: `0'-`9', `a'-`f', `A'-`F'
|